:root {
  --primary: #815F6F;
  --primary-dark: #5B41DF;
  --primary-light: #9B81FF;
  --secondary: #EDE9FF;
  --accent: #C4B5FD;
  --bg: #F8F7FF;
  --bg2: #F0EEFF;
  --border: #E2DCFF;
  --text: #1A0F4E;
  --text-light: #7B6FB0;
  --shadow-sm: 0 2px 12px rgba(123, 97, 255, 0.08);
  --shadow-md: 0 8px 32px rgba(123, 97, 255, 0.14);
  --shadow-lg: 0 20px 60px rgba(123, 97, 255, 0.18);
  --r: 20px;
  --r-sm: 12px;
  --fd: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fb);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--fd);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 700;
}

p {
  font-size: .97rem;
  color: var(--text-light);
  line-height: 1.75;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

.tag {
  display: inline-block;
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.sec-title {
  color: var(--text);
  margin-bottom: 14px;
}

.sec-sub {
  max-width: 600px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--fb);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 18px rgba(123, 97, 255, .35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(123, 97, 255, .45);
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px);
}

.reveal,
.reveal-l,
.reveal-r {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}

.reveal {
  transform: translateY(28px);
}

.reveal-l {
  transform: translateX(-28px);
}

.reveal-r {
  transform: translateX(28px);
}

.reveal.on,
.reveal-l.on,
.reveal-r.on {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .10s
}

.d2 {
  transition-delay: .20s
}

.d3 {
  transition-delay: .30s
}

.d4 {
  transition-delay: .40s
}

.d5 {
  transition-delay: .50s
}

/* ── NAVBAR ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all .35s ease;
}

#nav.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Logo in navbar: show JPEG with white bg removed via mix-blend + bg white pill */
.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
  transition: transform .25s;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .08));
}

.nav-logo-img:hover {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 7px 13px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all .2s;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--secondary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.mob-nav.open {
  display: flex;
}

.mob-nav a {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.mob-nav a:hover {
  color: var(--primary);
}

.mob-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0a0420 0%, #150b3d 45%, #231560 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(123, 97, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(123, 97, 255, .07) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.orb1 {
  width: 550px;
  height: 550px;
  top: -180px;
  right: -160px;
  background: radial-gradient(circle, rgba(123, 97, 255, .38), transparent 70%);
  animation: orbF 9s ease-in-out infinite;
}

.orb2 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  left: -100px;
  background: radial-gradient(circle, rgba(196, 181, 253, .22), transparent 70%);
  animation: orbF 11s ease-in-out infinite reverse;
}

.orb3 {
  width: 260px;
  height: 260px;
  top: 42%;
  left: 32%;
  background: radial-gradient(circle, rgba(123, 97, 255, .18), transparent 70%);
  animation: orbF 13s ease-in-out infinite;
}

@keyframes orbF {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(28px, -28px) scale(1.06)
  }

  66% {
    transform: translate(-18px, 18px) scale(.94)
  }
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
  animation: sFade .7s ease;
}

@keyframes sFade {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 97, 255, .18);
  border: 1px solid rgba(123, 97, 255, .3);
  border-radius: 50px;
  padding: 5px 15px;
  margin-bottom: 22px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: pls 2s ease infinite;
}

@keyframes pls {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.7)
  }
}

.hero-eyebrow span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-h1 {
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-h1 .hl {
  background: linear-gradient(135deg, #C4B5FD 0%, #A78BFA 50%, #7B61FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-p {
  font-size: 1.07rem;
  color: rgba(255, 255, 255, .65);
  max-width: 540px;
  margin-bottom: 34px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.hs {
  border-left: 2px solid rgba(123, 97, 255, .4);
  padding-left: 16px;
}

.hs-num {
  font-family: var(--fd);
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hs-lbl {
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 3px;
}

.hero-cards {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(380px, 38vw);
  pointer-events: none;
}

.hcard {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(10px);
  margin-bottom: 14px;
}

.hcard:nth-child(1) {
  animation: cf1 6s ease-in-out infinite;
}

.hcard:nth-child(2) {
  animation: cf2 6s ease-in-out infinite;
  margin-left: 36px;
}

@keyframes cf1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes cf2 {

  0%,
  100% {
    transform: translateY(-5px)
  }

  50% {
    transform: translateY(5px)
  }
}

.hc-lbl {
  font-size: .65rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 7px;
}

.hc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-val {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.hc-tag {
  background: rgba(123, 97, 255, .35);
  color: var(--accent);
  font-size: .7rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}

.hc-bar {
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}

.hc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  animation: bw 3s ease-in-out infinite;
}

@keyframes bw {

  0%,
  100% {
    width: 60%
  }

  50% {
    width: 88%
  }
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 10;
}

.hdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.hdot.active {
  background: var(--primary-light);
  width: 26px;
  border-radius: 4px;
}

/* ── ABOUT ── */
#about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--secondary), var(--bg2));
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .4;
}

/* Real logo in about — centred, large, bg removed */
.about-logo-img {
  position: relative;
  z-index: 1;
  width: 72%;
  max-width: 320px;
  filter: drop-shadow(0 8px 28px rgba(123, 97, 255, .22));
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.about-logo-img:hover {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: #fff;
  border-radius: var(--r-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 120px;
}

.ab-num {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.ab-lbl {
  font-size: .72rem;
  color: var(--text-light);
}

.about-badge2 {
  position: absolute;
  top: -18px;
  left: -18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--r-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 110px;
  color: #fff;
}

.ab2-num {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 800;
}

.ab2-lbl {
  font-size: .7rem;
  opacity: .75;
}

.about-checks {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .93rem;
  color: var(--text-light);
}

.chk {
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .65rem;
  color: var(--primary);
}

/* ── WHAT WE DO ── */
#whatwedo {
  background: #fff;
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.wwd-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.wwd-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform .3s;
}

.wwd-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.wwd-card:hover::before {
  transform: scaleX(1);
}

.wwd-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
  transition: background .3s;
}

.wwd-card:hover .wwd-icon {
  background: var(--primary);
}

.wwd-t {
  font-family: var(--fd);
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.wwd-p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.62;
}

/* ── SERVICES ── */
#services {
  background: var(--bg);
}

.svc-box {
  background: #fff;
  border-radius: var(--r);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.svc-box-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.svc-box-icon {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.svc-box-title {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.svc-box-desc {
  font-size: .87rem;
  color: var(--text-light);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 22px 18px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}

.svc-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.svc-card:hover::after {
  opacity: 1;
}

.svc-card>* {
  position: relative;
  z-index: 1;
}

.svc-card:hover .si {
  background: rgba(255, 255, 255, .2);
}

.svc-card:hover .sn,
.svc-card:hover .sd {
  color: #fff;
}

.svc-card:hover .sd {
  color: rgba(255, 255, 255, .72);
}

.si {
  width: 42px;
  height: 42px;
  background: var(--secondary);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 12px;
  transition: background .3s;
}

.sn {
  font-family: var(--fd);
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  transition: color .3s;
}

.sd{
  font-size:.8rem;
  color:var(--text-light);
  opacity:0;
  transform:translateY(10px);
  transition:all .3s ease;
}

/* show description when hovering card */
.sd{
  font-size:.8rem;
  color:var(--text-light);
  opacity:0;
  transform:translateY(10px);
  transition:all .3s ease;
}

.svc-card:hover .sd{
  opacity:1;
  transform:translateY(0);
}


/* ── RECRUITMENT PROCESS ── */
#process {
  background: #eaecf4;
}

.proc-wrap {
  margin-top: 56px;
  display: flex;
  align-items: center;
}

.proc-hub {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(160deg, #19495c 0%, #0c3244 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 4;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, .22), 0 0 0 28px rgba(255, 255, 255, .10), 0 0 0 42px rgba(255, 255, 255, .04), 0 12px 40px rgba(0, 0, 0, .28);
  padding: 20px;
}

.ph-pre {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 5px;
}

.ph-title {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
}

.ph-bar {
  width: 34px;
  height: 3px;
  background: #e8a020;
  border-radius: 2px;
  margin: 9px auto;
}

.ph-sub {
  font-size: .65rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.proc-spokes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 60px;
  position: relative;
}

.proc-spokes::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 36px;
  bottom: 36px;
  border-left: 2px dashed rgba(100, 110, 140, .4);
  pointer-events: none;
}

.proc-row {
  display: flex;
  align-items: center;
  position: relative;
}

.proc-vdot {
  position: absolute;
  left: -44px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2.5px solid #eaecf4;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .1);
  z-index: 2;
}

.proc-hline {
  flex: 0 0 26px;
  height: 2px;
  border-top: 2px dashed rgba(100, 110, 140, .4);
}

.proc-ico {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.45rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 2;
}

.proc-row:hover .proc-ico {
  transform: scale(1.1);
}

.proc-hline2 {
  flex: 0 0 14px;
  height: 2px;
  border-top: 2px dashed rgba(100, 110, 140, .4);
}

.proc-card {
  flex: 1;
  background: #fff;
  border-radius: 60px;
  padding: 13px 22px;
  min-height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .07);
  transition: box-shadow .3s, transform .3s;
}

.proc-row:hover .proc-card {
  box-shadow: 0 6px 26px rgba(0, 0, 0, .13);
  transform: translateX(3px);
}

.proc-card-body {
  flex: 1;
  padding-right: 44px;
}

.proc-ct {
  font-family: var(--fd);
  font-size: .92rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 3px;
}

.proc-cp {
  font-size: .77rem;
  color: #7a849a;
  line-height: 1.5;
}

.proc-cap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38px;
  border-radius: 0 60px 60px 0;
}

.pr1 .proc-vdot {
  background: #29b6d4;
}

.pr1 .proc-ico {
  background: linear-gradient(135deg, #29b6d4, #0097b2);
}

.pr1 .proc-cap {
  background: #29b6d4;
}

.pr2 .proc-vdot {
  background: #f5a623;
}

.pr2 .proc-ico {
  background: linear-gradient(135deg, #f5a623, #e08c00);
}

.pr2 .proc-cap {
  background: #f5a623;
}

.pr3 .proc-vdot {
  background: #e94f8b;
}

.pr3 .proc-ico {
  background: linear-gradient(135deg, #e94f8b, #c2185b);
}

.pr3 .proc-cap {
  background: #e94f8b;
}

.pr4 .proc-vdot {
  background: #3a6fd8;
}

.pr4 .proc-ico {
  background: linear-gradient(135deg, #3a6fd8, #1e4db7);
}

.pr4 .proc-cap {
  background: #3a6fd8;
}

.pr5 .proc-vdot {
  background: #f5c842;
}

.pr5 .proc-ico {
  background: linear-gradient(135deg, #f5c842, #e0a800);
}

.pr5 .proc-cap {
  background: #f5c842;
}

.proc-row {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.pr1 {
  transition-delay: .08s
}

.pr2 {
  transition-delay: .18s
}

.pr3 {
  transition-delay: .28s
}

.pr4 {
  transition-delay: .38s
}

.pr5 {
  transition-delay: .48s
}

.proc-row.on {
  opacity: 1;
  transform: none;
}

@media(max-width:700px) {
  .proc-wrap {
    flex-direction: column;
    gap: 28px;
  }

  .proc-hub {
    width: 150px;
    height: 150px;
  }

  .ph-title {
    font-size: 1.1rem;
  }

  .proc-spokes {
    padding-left: 0;
    width: 100%;
  }

  .proc-spokes::before {
    display: none;
  }

  .proc-row {
    opacity: 1 !important;
    transform: none !important;
    background: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    gap: 13px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  }

  .proc-vdot,
  .proc-hline,
  .proc-hline2 {
    display: none;
  }

  .proc-ico {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .proc-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-height: unset;
  }

  .proc-card-body {
    padding-right: 0;
  }

  .proc-cap {
    display: none;
  }

  .proc-row:hover .proc-card {
    transform: none;
    box-shadow: none;
  }
}

/* ── APPROACH ── */
#approach {
  background: var(--secondary);
  padding: 72px 0;
}

#approach .inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

#approach h2 {
  margin-bottom: 18px;
}

#approach p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ── WHY CHOOSE US ── */
#why {
  background: linear-gradient(140deg, #0a0420 0%, #150b3d 100%);
}

#why .tag {
  background: rgba(123, 97, 255, .2);
  color: var(--accent);
}

#why .sec-title {
  color: #fff;
}

#why .sec-sub {
  color: rgba(255, 255, 255, .55);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.why-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 97, 255, .14), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 97, 255, .4);
}

.why-card:hover::before {
  opacity: 1;
}

.wn {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(123, 97, 255, .18);
  line-height: 1;
  margin-bottom: 10px;
}

.wi {
  width: 50px;
  height: 50px;
  background: rgba(123, 97, 255, .15);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
  transition: background .3s;
}

.why-card:hover .wi {
  background: rgba(123, 97, 255, .3);
}

.wt {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}

.wp {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
}

/* ── OBJECTIVES ── */
#objectives {
  background: var(--bg);
}

.obj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.obj-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 18px;
  transition: all .3s;
}

.obj-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.obj-dot {
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.obj-t {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── CORE VALUES ── */
#values {
  background: #fff;
}

.val-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.val-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px 22px;
  text-align: center;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  cursor: default;
}

.val-card:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  transform: translateY(-7px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

.val-card:hover .vi,
.val-card:hover .vt,
.val-card:hover .vp {
  color: #fff;
}

.val-card:hover .vi {
  background: rgba(255, 255, 255, .2);
}

.val-card:hover .vp {
  color: rgba(255, 255, 255, .72);
}

.vi {
  width: 58px;
  height: 58px;
  background: var(--secondary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
  transition: background .3s;
}

.vt {
  font-family: var(--fd);
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  transition: color .3s;
}

.vp {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.58;
  transition: color .3s;
}

/* ── INDUSTRIES ── */
#industries {
  background: var(--bg);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.ind-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 18px;
  text-align: center;
  cursor: pointer;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
}

.ind-card:hover {
  border-color: var(--primary);
  background: var(--secondary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ind-ico {
  font-size: 2rem;
  margin-bottom: 10px;
}

.ind-name {
  font-family: var(--fd);
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
}

/* ── VISION & MISSION ── */
#vismis {
  background: #fff;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.vm-card {
  border-radius: var(--r);
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.vm-vision {
  background: linear-gradient(140deg, #0a0420 0%, #1a0f4e 100%);
}

.vm-mission {
  background: var(--bg);
  border: 1px solid var(--border);
}

.vm-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(123, 97, 255, .28), transparent);
  border-radius: 50%;
  right: -60px;
  bottom: -60px;
  pointer-events: none;
}

.vm-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.vm-vision .vm-icon {
  background: rgba(255, 255, 255, .1);
}

.vm-mission .vm-icon {
  background: var(--secondary);
}

.vm-pre {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.vm-vision .vm-pre {
  color: var(--accent);
}

.vm-mission .vm-pre {
  color: var(--primary);
}

.vm-title {
  font-family: var(--fd);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.vm-vision .vm-title {
  color: #fff;
}

.vm-mission .vm-title {
  color: var(--text);
}

.vm-text {
  font-size: .92rem;
  line-height: 1.78;
}

.vm-vision .vm-text {
  color: rgba(255, 255, 255, .58);
}

.vm-mission .vm-text {
  color: var(--text-light);
}

/* ── CONTACT ── */
#contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  margin-top: 48px;
  align-items: start;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.ci-ico {
  width: 46px;
  height: 46px;
  background: var(--secondary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.ci-lbl {
  font-size: .7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 3px;
}

.ci-val {
  font-family: var(--fd);
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
}

.map-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.map-box .m1 {
  font-size: 1.8rem;
}

.map-box .m2 {
  font-size: .78rem;
  color: var(--text-light);
}

.form-box {
  background: #fff;
  border-radius: var(--r);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-box h3 {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text);
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.fl {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .05em;
}

.fi,
.fta,
.fsel {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--fb);
  font-size: .88rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: all .2s;
}

.fi:focus,
.fta:focus,
.fsel:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(123, 97, 255, .1);
}

.fta {
  resize: vertical;
  min-height: 115px;
}

.form-msg {
  display: none;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  border-radius: var(--r-sm);
  padding: 14px;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  font-size: .9rem;
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(140deg, #0a0420 0%, #150b3d 100%);
  padding: 60px 0 0;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* Footer logo — inverted/white version */
.ft-logo-img {
  height: 62px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(255, 255, 255, .1));
  opacity: 0.9;
}

.ft-desc {
  font-size: .84rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ft-socials {
  display: flex;
  gap: 9px;
}

.ft-soc {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
  color: rgba(255, 255, 255, .45);
}

.ft-soc:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.ft-col-h {
  font-family: var(--fd);
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ft-links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
}

.ft-links a:hover {
  color: var(--accent);
}

.ft-ci {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
}

.ft-ci-ico {
  font-size: .85rem;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.ft-ci-txt {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.5;
}

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .28);
  flex-wrap: wrap;
  gap: 8px;
}

.ft-bottom a {
  color: rgba(255, 255, 255, .28);
  transition: color .2s;
}

.ft-bottom a:hover {
  color: var(--accent);
}

/* ── WHATSAPP ── */
#wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 6px 26px rgba(37, 211, 102, .45);
  z-index: 900;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  animation: wab 3s ease-in-out infinite;
}

#wa:hover {
  transform: scale(1.14);
  box-shadow: 0 8px 34px rgba(37, 211, 102, .55);
}

@keyframes wab {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

.wa-tip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--text);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 7px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

#wa:hover .wa-tip {
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-cards {
    display: none;
  }

  .about-grid {
    gap: 36px;
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-cta-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid,
  .vm-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .frow {
    grid-template-columns: 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }

  .ft-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width:480px) {
  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    justify-content: center;
  }

  .hero-stats {
    gap: 18px;
  }
}